.emailcover {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.911);
    z-index: 49;
    width: 0%;
    height: 100%;
    top: 0;
    right: 0;
    transition: 0.6s;
}

.email {
    position: fixed;
    top: 0%;
    right: -100%;
    width: 25%;
    height: 100%;
    background-color: white;
    z-index: 50;
    transition: 1s;
}

.closeemail{
    text-align: right;
    margin: 10px 10px 0px 0px;
    font-size: 25px;
}

.closeemail span{
    cursor: pointer;
    transition: 0.3s;
}

.closeemail span:hover{
    color: rgb(255, 0, 0);
}

.emailasterix {
    color: red;
    position: absolute;
    margin: -11px 0px 0px -11px;
}

.emailtitle {
    padding: 15px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: underline rgb(243, 208, 11);
    font-size: 40px;
}

.emailtext {
    padding: 0px 15px 0px 15px;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
}

.email form {
    padding: 15px;
}

.email label {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    
}

.email input {
    font-size: 18px;
    width: 100%;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: rgb(238, 238, 238);
    color: black;
    border: none;
    height: 50px;
}

.email textarea {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: grey;
    background-color: rgb(238, 238, 238);
    font-size: 18px;
    border: none;
    width: 98%;
    height: 300px;
}

.email button {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    width: 100%;
    background-color: rgb(243, 208, 11);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.email button:hover {
    color: white;
    background-color: rgb(0, 0, 0);
}


